home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Includes / AEAHandlerOpenApp.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  442 b   |  22 lines

  1. /*    ====================
  2.  *    AEAHandlerOpenApp.hh
  3.  *    ====================
  4.  *    
  5.  *    Implemented by AEAHandlerOpenApp.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "AEAHandler.hh"
  11.  
  12. class AEADescAppleEvent;
  13.  
  14. class AEAHandlerOpenApp : public AEAHandler {
  15. public:
  16.     AEAHandlerOpenApp();
  17.     virtual ~AEAHandlerOpenApp() {}
  18.     virtual void HandleEventSelf(const AEADescAppleEvent &inAppleEvent, AEADescAppleEvent &outReply);
  19.     virtual void NotifyAppOpenAppEvent() = 0;
  20.     
  21. };
  22.